home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / network / lattice / portlib.lzh / PORTLIB / SYS / UIO.H < prev   
Encoding:
C/C++ Source or Header  |  1994-05-20  |  365 b   |  19 lines

  1. /*
  2.  *    WARNING: readv() and writev() work only with sockets! On other files
  3.  *    you will get EINVAL.
  4.  */
  5.  
  6. #ifndef _SYS_UIO_H
  7. #define _SYS_UIO_H
  8.  
  9. #ifndef _COMPILER_H
  10. #include <compiler.h>
  11. #endif
  12.  
  13. #include <sys/socket.h>
  14.  
  15. __EXTERN int    readv    __PROTO((int, struct iovec *, _SIZE_T));
  16. __EXTERN int    writev    __PROTO((int, struct iovec *, _SIZE_T));
  17.  
  18. #endif
  19.